inspector: Touch up list styling
authorMatthias Clasen <mclasen@redhat.com>
Sun, 8 Dec 2019 17:53:46 +0000 (12:53 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 31 May 2020 13:24:19 +0000 (09:24 -0400)
This is just the minimal amount of work to make
headers recognizable.

gtk/inspector/inspector.css

index f31c2f1c6facba23661f83f37ef4ad0df2ba1301..e0b3c7ecf76680be190185e4da7627b71a1a7434 100644 (file)
@@ -1,21 +1,29 @@
 /* some style for the inspector */
 
-.header {
-  background: lightgray;
-  border: 1px solid gray;
+.list header {
+  background: white;
+  border: 1px solid lightgray;
 }
 
-.header>* {
+.list header button {
+  background: none;
+}
+
+.list header button.dnd {
+  background: gray;
+}
+
+.list header>* {
   padding: 2px;
   font-weight: bold;
 }
 
-.header sort_indicator {
+.list header sort_indicator {
   min-width: 16px;
 }
 
-.header>*:not(:last-child) {
-  border-right: 1px solid gray;
+.list header>*:not(:last-child) {
+  border-right: 1px solid lightgray;
 }
 
 .list .cell {